home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Workbench / ToolManager / Source / Converter / access.c next >
C/C++ Source or Header  |  1998-06-17  |  858b  |  33 lines

  1. /*
  2.  * access.c  V3.1
  3.  *
  4.  * ToolManager old preferences converter for Access Objects
  5.  *
  6.  * Copyright (C) 1990-98 Stefan Becker
  7.  *
  8.  * This source code is for educational purposes only. You may study it
  9.  * and copy ideas or algorithms from it for your own projects. It is
  10.  * not allowed to use any of the source codes (in full or in parts)
  11.  * in other programs. Especially it is not allowed to create variants
  12.  * of ToolManager or ToolManager-like programs from this source code.
  13.  *
  14.  */
  15.  
  16. #include "converter.h"
  17.  
  18. /* Conversion routine */
  19. #define DEBUGFUNCTION ConvertAccessConfig
  20. BOOL ConvertAccessConfig(void *chunk, struct IFFHandle *iffh, ULONG id)
  21. {
  22.  BOOL rc = TRUE;
  23.  
  24.  ACCESS_LOG(LOG3(Entry, "Chunk 0x%08lx IFF Handle 0x%08lx ID 0x%08lx",
  25.                  chunk, iffh, id))
  26.  
  27.  ACCESS_LOG(LOG0(DISCARDED))
  28.  
  29.  ACCESS_LOG(LOG1(Result, "%ld", rc))
  30.  
  31.  return(rc);
  32. }
  33.